home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmHowMuch
- BackColor = &H00800000&
- Caption = "The HowMuch Program"
- ClientHeight = 4020
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 6990
- Height = 4425
- Icon = HOWMUCH.FRX:0000
- Left = 1035
- LinkTopic = "Form1"
- Picture = HOWMUCH.FRX:0302
- ScaleHeight = 4020
- ScaleWidth = 6990
- Top = 1140
- Width = 7110
- Begin CommandButton cmdHowMuch
- Caption = "&How Much?"
- Height = 495
- Left = 1440
- TabIndex = 1
- Top = 3360
- Width = 1815
- End
- Begin CommandButton cmdExit
- Caption = "E&xit"
- Height = 495
- Left = 240
- TabIndex = 0
- Top = 3360
- Width = 1215
- End
- Begin Label Label1
- Alignment = 2 'Center
- BorderStyle = 1 'Fixed Single
- Height = 495
- Left = 3240
- TabIndex = 2
- Top = 3360
- Width = 3615
- End
- Option Explicit
- Declare Function GetFreeSpace Lib "Kernel" (ByVal wFlags As Integer) As Long
- Sub cmdExit_Click ()
- End
- End Sub
- Sub cmdHowMuch_Click ()
- Dim FreeSpace
- FreeSpace = GetFreeSpace(0)
- Label1.Caption = "Currently Free Space on this system: " + FreeSpace
- End Sub
-